home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Queries / PGetFindTypeAttr2.cpp < prev    next >
C/C++ Source or Header  |  1996-10-14  |  684b  |  26 lines

  1. /*
  2.  *--- PGetFindTypeAttr2.cpp ---------------------------------------------
  3.  * Copyright (c) 1996 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Oct 10, 1996 @ 8:37 PM by Paul Norton.
  5.  *
  6.  * Description:  For notes about this class, refer to the
  7.  * PCL documentation file PGetFindTypeAttr2.html
  8.  *-------------------------------------------------------------------------
  9.  */
  10.  
  11. #include "PGetFindTypeAttr2.h"
  12. #include "PReplyBuf.h"
  13.  
  14. PGetFindTypeAttr2::PGetFindTypeAttr2()
  15. : PHandleQuery(pm_getfindtypeattr2)
  16. {
  17.     PReplyBuf reply(replyPtr);
  18.     
  19.     reply    >> dSetWidth
  20.             >> cTrack
  21.             >> &sColorName
  22.             >> nTintValue;
  23. }
  24.  
  25. // end of PGetFindTypeAttr2.cpp
  26.